From f27f8db2d8358027977d1a60a20ff498df6c73b5 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 11 Jan 2012 03:04:00 +0100 Subject: [PATCH] stylecontext: Use our own color resolve function ... instead of using the StyleProperties. --- gtk/gtkstylecontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c index 5f7d644d02..0b25a3277e 100644 --- a/gtk/gtkstylecontext.c +++ b/gtk/gtkstylecontext.c @@ -2391,7 +2391,7 @@ _gtk_style_context_peek_style_property (GtkStyleContext *context, else g_value_init (&pcache->value, GDK_TYPE_COLOR); - if (gtk_symbolic_color_resolve (color, data->store, &rgba)) + if (_gtk_style_context_resolve_color (context, color, &rgba)) { if (G_PARAM_SPEC_VALUE_TYPE (pspec) == GDK_TYPE_RGBA) g_value_set_boxed (&pcache->value, &rgba); -- 2.30.2